Action hook 'add_meta_boxes_{$post_type}'

in WP Core File wp-admin/includes/meta-boxes.php at line 1733

Description

Fires after all built-in meta boxes have been added, contextually for the given post type. The dynamic portion of the hook name, `$post_type`, refers to the post type of the post. Possible hook names include: - `add_meta_boxes_post` - `add_meta_boxes_page` - `add_meta_boxes_attachment`

Occurrences

Filename Line Number
wp-admin/includes/meta-boxes.php 1733

Parameters

Type Name Description
WP_Post $post Post object.

PHP Doc

/**
	 * Fires after all built-in meta boxes have been added, contextually for the given post type.
	 *
	 * The dynamic portion of the hook name, `$post_type`, refers to the post type of the post.
	 *
	 * Possible hook names include:
	 *
	 *  - `add_meta_boxes_post`
	 *  - `add_meta_boxes_page`
	 *  - `add_meta_boxes_attachment`
	 *
	 * @since 3.0.0
	 *
	 * @param WP_Post $post Post object.
	 */